table of contents
other sections
TAN(3) | Podręcznik programisty Linuksa | TAN(3) |
NAZWA¶
tan, tanf, tanl - funkcja tangens
SKŁADNIA¶
#include <math.h> double tan(double x); float tanf(float x); long double tanl(long double x);
OPIS¶
Funkcja tan() zwraca tangens dla x, gdzie x to wartość w radianach.
ZGODNE Z¶
SVID 3, POSIX, BSD 4.3, ISO 9899. Warianty float i long double są wymagane przez C99
ZOBACZ TAKŻE¶
2002-07-27 |